@import url(header.css);
.contact-information-container {
    height: 400px;
}
.contact-container {
    width: 500px;
    background-color: #fff;
    box-shadow: 0 0 20px 0 #999;
    top: 50%;
    left: 50%;
    transform:  translate(-50%, -50%);
    position: absolute;
}

form {
    margin: 50px;
}

.input-field {
    width: 400px;
    height: 40px;
    margin-top: 20px;
    padding-left: 10px;
    background-color: #94a897;
    border: 1px solid #777;
    border-radius: 14px;
    outline: none;
}

.textarea-field {
    width: 400px;
    height: 150px;
    margin-top: 20px;
    padding-left: 10px;
    background-color: #94a897;
    border: 1px solid #777;
    border-radius: 14px;
    outline: none;
}

.btn {
    border-radius: 20px;
    color: #fff;
    margin-top: 18px;
    padding: 10px;
    background-color: #47c35a;
    font-size: 12px;
    border: none;
    cursor: pointer;
}

